Spring 热重载
原文:https://www.bilibili.com/video/BV1PV4y1R7ba/
- 使用 JetBrains Runtime
为了热重载,需要使用 JetBrains Runtime 的 JDK,最新版本 IDEA 自带 JBR 17。
https://github.com/JetBrains/JetBrainsRuntime
- 下载 HotswapAgent
https://github.com/HotswapProjects/HotswapAgent
- 添加 JVM 参数
在 IDEA 中,添加 VM options:
-XX:+AllowEnhancedClassRedefinition -XX:HotswapAgent=fatjar
- 尝试热重载
修改你的代码,按下 Ctrl + Shift + F9
,即可看到热重载的效果。